home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / Technical Documentation / Macintosh Technical Notes / Archive / Networking / TCP_Server.sea.hqx / TCP Server / queues.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  277 b   |  13 lines

  1. /*
  2.     TCP Client/Server Queuing Example
  3.     Steve Falkenburg, MacDTS, Apple Computer
  4.     3/11/92
  5. */
  6.  
  7. void InitQueues(void);
  8.  
  9. MyQElemPtr GetUnusedPBlock(void);
  10. void RecycleFreePBlock(MyQElemPtr pBlock);
  11. MyQElemPtr GetCompletedPBlock(void);
  12. void StoreCompletedPBlock(MyQElemPtr pBlock);
  13.